From 92e14ade2714ff01564b9f32c0552fdf5e463222 Mon Sep 17 00:00:00 2001 From: Christian Marangi Date: Fri, 21 Nov 2025 16:02:24 +0100 Subject: [PATCH] rtpproxy: add missing dependency for libsrtp2 New rtpproxy package adds support for libsrtp2 if detected. In the context of buildbot every package gets selected and libsrtp2 support gets selected automatically with rtpproxy. Add this extra dependency directly to rtpproxy to fix build error. Signed-off-by: Christian Marangi --- net/rtpproxy/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/net/rtpproxy/Makefile b/net/rtpproxy/Makefile index f3893ab..cf6c0ed 100644 --- a/net/rtpproxy/Makefile +++ b/net/rtpproxy/Makefile @@ -37,7 +37,7 @@ endef define Package/rtpproxy $(call Package/rtpproxy/Default) - DEPENDS:=+libatomic +libpthread +librt + DEPENDS:=+libsrtp2 +libatomic +libpthread +librt TITLE:=RTP (Realtime Transport Protocol) proxy MENU:=1 endef -- 2.30.2